All Questions
Tagged with arrayobject-oriented
5 questions
34votes
5answers
154kviews
Modifying an array during a foreach loop [closed]
This question is always on my mind. I usually alter the array while looping through its keys, based on my gut feelings: ...
7votes
5answers
4kviews
Find number repeated odd times in array
I completed the following exercise: You are given an array of repeating numbers. All numbers repeat in an even way, except for one. Find that odd occurring number. ...
7votes
3answers
3kviews
Dynamically-expanding array in C
I'm learning C, specifically OOP in C. As practice, I wrote a dynamically-expanding array. dynarray.h ...
2votes
1answer
112views
Road tax data parser
I'm making a data parser for road tax data (costs) which parses a JSON file with all weird variable names, which the customer gave me. The costs are different on each vehicle type. The costs at some ...
1vote
1answer
155views
List interface implementation
After following the comment from greybeard, Below is the design for given first phase of implementation, Code directory structure: ...