This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const gulp = require('gulp'); | |
const { spawn } = require('child_process'); | |
const { join } = require('path'); | |
const gulpmodules = ['./src_modules/common', | |
'./src_modules/client', | |
'./src_modules/server']; | |
const moduleTasks = ['default', 'clean', 'build', 'test'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package math.recreational.generators; | |
import java.util.Iterator; | |
public class PalindromeGenerator implements Iterator<Long> { | |
private Long current = 0l; | |
@Override | |
public boolean hasNext() { |