vote up 1 vote down star

This seems like a pretty simple problem, but I'm new to OCaml and need some help with the syntax. I'm representing the bit 0 as false and 1 as true. I need a recursive function that will take a positive integer and convert it to binary with the lower order bit at the beginning of the returning list. For instance, converting the integer 8 to binary results in 0001, therefore the function should return [false; false; false; true]. Another example: if the integer is 18, the binary is 01001, and thus the list will be [false; true; false; false; true]. I know I probably have to use mod and division by 2 somewhere...

flag
1  
so how about you post the answer then – bob esponja Oct 25 at 21:46

closed as not a real question by Chuck, Norman Ramsey, nlucaroni, 280Z28, Jonathan Leffler Oct 26 at 16:24

1 Answer

vote up 1 vote down

Please use the "homework" tag when asking for help with homework.

Apparently you have the same problem as someone else:

question 1

question 2

link|flag
Thanks, I actually saw that. But it seems that the question I asked was not answered in those questions. Only parts of those questions were answered. So I still need an answer, please. – Evan Parker Oct 25 at 19:52
1  
You also need a better question. Please refrain from 'do my work, please' questions. At the very least enter a code sample of an attempt. – nlucaroni Oct 26 at 13:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.