Skip to content

Instantly share code, notes, and snippets.

View onka13's full-sized avatar
💭
Developer

onka onka13

💭
Developer
View GitHub Profile
@onka13
onka13 / main.dart
Last active October 5, 2020 07:54
smallestNumberOfPerfectSquares
import 'dart:math' as math;
// dislay detailed logs
bool enableLog = false;
// display iteration count
int iterationCount = 0;
// cache object
Map<int, List<int>> cache = {};