bsc

Comprehensive codebase and cou...
Log | Files | Refs | README | LICENSE

temp.r (260B)


      1 s1 = rep(c(1,2,3,4,5), times=2)
      2 s2 = c(5,4,3,2,1)
      3 count = 0
      4 for(i in s1) {
      5     for (j in s2) {
      6         if((i+j) %% 2 == 0) {
      7             count = count + 1
      8             print(sprintf("%d, %d, %d", i, j, count))
      9             print(length(s1))
     10         }
     11     }
     12 }
     13 2^3
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror