<story_type_all_caps(BUG | FEATURE | CHORE)> - <story_title>
[#<story_number>]
Add description here - should describe the problem
#include <iostream> | |
#include <string> | |
#include <map> | |
#include <vector> | |
#include <numeric> | |
using namespace std; | |
map<string, bool, greater<string>> fbMap(int num) { | |
map<string, bool, greater<string>> tbl; |
(defn fizzbuzziness [num] | |
(def tbl {"Fizz" (mod num 3),"Buzz" (mod num 5)}) | |
(clojure.string/join "" (filter (comp #{0} tbl) (keys tbl)))) |
class Integer | |
def fizzbuzziness | |
{ 'Fizz' => (self % 3).zero?, 'Buzz' => (self % 5).zero? } | |
.select { |_key, value| value } | |
.keys | |
.inject('') { |prev, curr| "#{prev}#{curr}" } | |
end | |
end |
# Never do this for real. | |
class Array | |
def count | |
'fish' | |
end | |
end |
<story_type_all_caps(BUG | FEATURE | CHORE)> - <story_title>
[#<story_number>]
Add description here - should describe the problem
# Subject (one line summary of description) | |
# __RELATED STORY:__ | |
# __<BUG | FEATURE | CHORE>__ - *<Story Title>* | |
# \[[#<story-id>](<story-url>)\] | |
# __DESCRIPTION:__ | |
# Body (What and Why) | |
# Elaborate on the reasons changes were made here |
(function() { | |
angular.module('DatepickerModule', []) | |
})(); | |
(function() { | |
'use strict'; | |
/** | |
* This component is my alternative to the directive wrapper approach, and makes use of | |
* component's onUpdate method to pass in a callback to the parent component. |