计算两个单元格区域中的偏差

计算两个单元格区域中的偏差

以下是我想做的事情:

Correct answers: A C A B D B ...

Student:         Answers:            Score:
--------         --------            ------
Charlie A.       A D A B D C ...     4/6
George B.        A C A B D D ...     5/6

如何通过将每个学生的答案与第一行的答案进行比较来计算正确答案?我希望能够通过输入答案来计算测试分数。

答案1

下面是一个 shell 脚本,它只打印相同字符的数量,而不进行任何格式化:

#!/bin/bash

solutions="ACABDB"
input="Charlie A.,ADABDC
George B.,ACABDD"
IFS=$'\n'
for line in $input; do
  name=${line%,*}
  answers=${line#*,}
  correct=0
  for i in $(seq ${#solutions}); do
    [ ${answers:$i:1} == ${solutions:$i:1} ] && ((correct++))
  done
  echo "$line,$correct"
done

Ruby 版本将结果格式化为等宽表格:

solutions = "ACABDB"
"Charlie A.,ADABDC
George B.,ACABDD".split("\n").each { |line|
  name, answer = line.split(",")
  correct = 0
  (0...solutions.length).each { |i|
    correct += 1 if answer[i] == solutions[i]
  }
  puts "#{"%-17s" % name}#{"%-20s" % answer.split("").join(" ")}#{correct}/#{solutions.length}"
}

您可以使用 TextEdit(纯文本模式)保存脚本,然后使用bash ~/Desktop/script.sh或 之类的命令从终端运行它们ruby ~/Desktop/script.rb

相关内容