Skip to content

Instantly share code, notes, and snippets.

View mwf's full-sized avatar

Ivan Korolev mwf

  • Avito
  • Moscow, Russia
View GitHub Profile
package main
import (
"fmt"
"math"
"time"
)
func isPrime(num int32) bool {
if num == 2 {
package main
import (
"fmt"
"math"
"time"
)
func isPrime(num int) bool {
if num == 2 {
class _Missing(object):
def __repr__(self):
return 'no value'
def __reduce__(self):
return '_missing'
_missing = _Missing()