Tagged Questions
127
votes
80answers
62k views
File I/O in Every Programming Language [closed]
This has to be a common question that all programmers have from time to time.
How do I read a line from a text file? Then the next question is always how do i write it back.
Of course most of you ...
21
votes
9answers
726 views
Other ternary operators besides ternary conditional (?:)
The "ternary operator" expression is now almost equivalent to the ternary conditional operator:
condition ? trueExpression : falseExpression;
However, "ternary operator" only means that it takes ...
21
votes
61answers
13k views
Language showdown: Convert string of digits to array of integers? [closed]
I was trying to convert a string containing only base 10 digits (e.g. "124890") to an array of corresponding integers (for given example: [1, 2, 4, 8, 9, 0]), in Ruby.
I'm curious about how easily ...
8
votes
15answers
735 views
Language showdown: Lazy (aka short-circuit) evaluation for And and Or applied to a list
If I have a boolean function f(x) = {print(x); return is_even(x)} that does some time-consuming (in this example, for illustrative purposes, side-effect-producing) stuff and a list a={2,3,4} I can ...
2
votes
7answers
1k views
RESTful webservice to sum a list of numbers
PHP makes this sort of thing dirt simple but I'd like to know how other languages do it. To standardize on a simple example, how would you implement the following webservice to sum a list of numbers:
...
0
votes
6answers
528 views
Remove Duplicates From File (vs COBOL)
This Cobol question really piqued my interest because of how much effort seemed to be involved in what seems like it would be a simple task.
Some sloppy Python to remove file duplicates could be ...