This file contains hidden or 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
import React, { Component } from 'react'; | |
import StepTile from '../components/StepTile'; | |
import ItemTile from '../components/ItemTile'; | |
import FetchButton from '../components/FetchButton'; | |
class InstructionsContainer | |
extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { |
This file contains hidden or 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
require 'pry' | |
num1 = 1122 #=> 3 | |
num2 = 8182759778 #=>15 | |
num3 = 12345 #=>0 | |
def captcha1(num) | |
list = num.to_s.split('').map(&:to_i) | |
total = 0 |
NewerOlder