mirror of
https://bitbucket.org/Mattrixwv/projecteulerlua.git
synced 2025-12-06 17:43:57 -05:00
Updated problems to be more in line with conventions
This commit is contained in:
10
Problem1.lua
10
Problem1.lua
@@ -1,11 +1,11 @@
|
||||
--ProjectEuler/lua/Problem1.lua
|
||||
--Matthew Ellison
|
||||
-- Created: 02-01-19
|
||||
--Modified: 03-28-19
|
||||
--Modified: 06-19-20
|
||||
--What is the sum of all the multiples of 3 or 5 that are less than 1000
|
||||
--All of my requires, unless otherwise listed, can be found at https://bitbucket.org/Mattrixwv/luaClasses
|
||||
--[[
|
||||
Copyright (C) 2019 Matthew Ellison
|
||||
Copyright (C) 2020 Matthew Ellison
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
@@ -25,11 +25,11 @@
|
||||
require "Stopwatch"
|
||||
|
||||
|
||||
timer = Stopwatch:create();
|
||||
local timer = Stopwatch:create();
|
||||
timer:start();
|
||||
|
||||
TOP_NUMBER = 999; --This is the largest number that you are going to check
|
||||
sumOfMultiples = 0;
|
||||
local TOP_NUMBER = 999; --This is the largest number that you are going to check
|
||||
local sumOfMultiples = 0;
|
||||
for num = 1, TOP_NUMBER do
|
||||
if((num % 3) == 0) then
|
||||
sumOfMultiples = sumOfMultiples + num;
|
||||
|
||||
Reference in New Issue
Block a user